home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / REmovido / Esportes / air_hockey.swf / scripts / frame_4 / DoAction.as < prev   
Text File  |  2006-07-26  |  1KB  |  54 lines

  1. if(_root.lev == 48)
  2. {
  3.    bbx1._visible = 1;
  4.    bbx2._visible = 0;
  5.    bbx3._visible = 0;
  6. }
  7. if(_root.lev == 24)
  8. {
  9.    bbx1._visible = 0;
  10.    bbx2._visible = 1;
  11.    bbx3._visible = 0;
  12. }
  13. if(_root.lev == 6)
  14. {
  15.    bbx1._visible = 0;
  16.    bbx2._visible = 0;
  17.    bbx3._visible = 1;
  18. }
  19. if(_root.scorMe > _root.scorAi)
  20. {
  21.    if(_root.lev == 48)
  22.    {
  23.       mesaj = "YOU WON! \nTry your skills with the medium difficulty level.";
  24.    }
  25.    if(_root.lev == 24)
  26.    {
  27.       mesaj = "YOU WON! \nTry your skills with the hard difficulty level.";
  28.    }
  29.    if(_root.lev == 6)
  30.    {
  31.       mesaj = "YOU WON!";
  32.    }
  33. }
  34. if(_root.scorAi > _root.scorMe)
  35. {
  36.    if(_root.lev == 48)
  37.    {
  38.       mesaj = "YOU LOST! \nTry again.";
  39.    }
  40.    if(_root.lev == 24)
  41.    {
  42.       mesaj = "YOU LOST! \nTry with the easy difficulty level.";
  43.    }
  44.    if(_root.lev == 6)
  45.    {
  46.       mesaj = "YOU LOST! \nTry with the medium difficulty level.";
  47.    }
  48. }
  49. if(_root.scorAi == _root.scorMe)
  50. {
  51.    mesaj = "DRAW! \nTry Again.";
  52. }
  53. _root.mes.text = mesaj;
  54.